Package com.cisco.pt.ipc.ui
Interface WebViewManager
- All Superinterfaces:
IPCObject
- All Known Implementing Classes:
WebViewManagerImpl
Information provided by the PKI file:
\class WebViewManager
\brief WebViewManager manages all WebViews.
\example appWindow().getWebViewManager()
- Author:
- Auto-generated
-
Method Summary
Modifier and TypeMethodDescriptionvoidcloseAll()Information provided by the PKI file:booleancloseWebView(UUID id) Information provided by the PKI file:createWebView(String title, String url, int width, int height) Information provided by the PKI file:getWebView(UUID id) Information provided by the PKI file:Methods inherited from interface com.cisco.pt.ipc.IPCObject
getAccessMessage, getClassName, getFactory, getObjectUUID, getPacketTracerSession
-
Method Details
-
createWebView
Information provided by the PKI file:
\brief Creates a WebView. \param title, the title for the WebView. \param url, the URL for the WebView. \param width, the width for the WebView. \param height, the height for the WebView. \return WebView, the WebView object that is created.- Parameters:
title- Takes in a parameter of titleurl- Takes in a parameter of urlwidth- Takes in a parameter of widthheight- Takes in a parameter of height- Returns:
- WebView Returns a WebView
-
getWebView
Information provided by the PKI file:
\brief Returns the WebView with the specified UUID. \param id, the UUID of the WebView of interest. \return WebView, the WebView object with the specified UUID.- Parameters:
id- Takes in a parameter of id- Returns:
- WebView Returns a WebView
-
closeWebView
Information provided by the PKI file:
\brief Closes the WebView with the specified UUID. \param id, the UUID of the WebView of interest. \return bool, true if successful, otherwise false.- Parameters:
id- Takes in a parameter of id- Returns:
- boolean Returns a boolean
-
closeAll
void closeAll()Information provided by the PKI file:
\brief Closes all WebViews.
-